home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 19
/
Amiga Plus Leser CD 19.iso
/
Sound
/
DelfMPEG
/
rexx
/
vol
< prev
Wrap
Text File
|
2002-11-17
|
328b
|
20 lines
/** DelfMPEG ARexx test **/
/* usage: rx vol <volume> */
PARSE ARG volume
ADDRESS DELFMPEG
OPTIONS RESULTS
if volume=='' then do
say 'missing parameter <volume>'
return 20
end
if ((volume<0) | (volume>200)) then do
say 'invalid value for parameter <volume> (must be 0...200)'
return 20
end
SETVOLUME volume